From 369747519d1b6dce5acb50ec20d529a3ed0c96f7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 15 May 1993 21:17:06 +0000 Subject: [PATCH] Preload mouse, scroll-bar and select if have multi-frames. --- lisp/loadup.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/loadup.el b/lisp/loadup.el index bdd438de77d..dc0c393829b 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -52,7 +52,12 @@ (load "window") (garbage-collect) (if (fboundp 'delete-frame) - (load "frame")) + (progn + (load "frame") + (load "mouse") + (garbage-collect) + (load "scroll-bar") + (load "select"))) (garbage-collect) (load "paths.el") ;Don't get confused if someone compiled paths by mistake. (garbage-collect) -- 2.30.2